2020-10-24 07:34:43 +00:00
|
|
|
version: "3"
|
|
|
|
networks:
|
|
|
|
node-network:
|
|
|
|
driver: bridge
|
|
|
|
services:
|
|
|
|
verdaccio:
|
|
|
|
image: verdaccio/verdaccio
|
|
|
|
container_name: "verdaccio"
|
|
|
|
networks:
|
|
|
|
- node-network
|
|
|
|
environment:
|
2020-11-11 07:23:39 +00:00
|
|
|
- VERDACCIO_PORT=${VERDACCIO_PORT}
|
|
|
|
restart: always
|
2020-10-24 07:34:43 +00:00
|
|
|
ports:
|
2020-11-11 07:23:39 +00:00
|
|
|
- "${VERDACCIO_PORT}:4873"
|
2020-10-24 07:34:43 +00:00
|
|
|
# volumes:
|
|
|
|
# - "./verdaccio/storage:/verdaccio/storage"
|
|
|
|
# - "./verdaccio/config:/verdaccio/conf"
|
|
|
|
# - "./verdaccio/plugins:/verdaccio/plugins"
|
|
|
|
mysql:
|
|
|
|
image: mysql:5.7
|
|
|
|
environment:
|
2020-11-11 07:23:39 +00:00
|
|
|
MYSQL_DATABASE: ${DB_DATABASE}
|
|
|
|
MYSQL_USER: ${DB_USER}
|
|
|
|
MYSQL_PASSWORD: ${DB_PASSWORD}
|
|
|
|
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
|
2020-10-24 07:34:43 +00:00
|
|
|
restart: always
|
|
|
|
ports:
|
2020-11-11 07:23:39 +00:00
|
|
|
- "${DB_MYSQL_PORT}:3306"
|
2020-12-14 09:06:05 +00:00
|
|
|
networks:
|
|
|
|
- node-network
|
2020-10-24 07:34:43 +00:00
|
|
|
postgres:
|
|
|
|
image: postgres:10
|
|
|
|
restart: always
|
|
|
|
ports:
|
2020-11-11 07:23:39 +00:00
|
|
|
- "${DB_POSTGRES_PORT}:5432"
|
2020-12-14 09:06:05 +00:00
|
|
|
networks:
|
|
|
|
- node-network
|
2020-10-24 07:34:43 +00:00
|
|
|
command: postgres -c wal_level=logical
|
|
|
|
environment:
|
2020-11-11 07:23:39 +00:00
|
|
|
POSTGRES_USER: ${DB_USER}
|
|
|
|
POSTGRES_DB: ${DB_DATABASE}
|
2020-12-14 09:06:05 +00:00
|
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
|
|
app:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
command: [ "yarn", "start" ]
|
|
|
|
ports:
|
|
|
|
- "${APP_HTTP_PORT}:${APP_HTTP_PORT}"
|
|
|
|
- "${HTTP_PORT}:${HTTP_PORT}"
|
|
|
|
networks:
|
|
|
|
- node-network
|