diff options
Diffstat (limited to 'Services')
-rw-r--r-- | Services/mariadb/README.md | 2 | ||||
-rw-r--r-- | Services/postgres/README.md | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Services/mariadb/README.md b/Services/mariadb/README.md index 1ab5a12..f940414 100644 --- a/Services/mariadb/README.md +++ b/Services/mariadb/README.md @@ -24,6 +24,8 @@ based on [startx/fedora container](https://hub.docker.com/r/startx/fedora) service: image: startx/sv-mariadb:latest container_name: "service-mariadb" + ports: + - "3306:3306" environment: CONTAINER_TYPE: "service" CONTAINER_SERVICE: "mariadb" diff --git a/Services/postgres/README.md b/Services/postgres/README.md index 62aee5a..d801d74 100644 --- a/Services/postgres/README.md +++ b/Services/postgres/README.md @@ -24,6 +24,8 @@ based on [startx/fedora container](https://hub.docker.com/r/startx/fedora) service: image: startx/sv-postgres:latest container_name: "service-postgres" + ports: + - "5432:5432" environment: CONTAINER_TYPE: "service" CONTAINER_SERVICE: "postgres" |