2022-03-06 09:29:20 +00:00
|
|
|
version: "3"
|
|
|
|
networks:
|
|
|
|
nocobase:
|
|
|
|
driver: bridge
|
|
|
|
services:
|
2022-04-17 02:00:42 +00:00
|
|
|
verdaccio:
|
|
|
|
image: verdaccio/verdaccio
|
|
|
|
networks:
|
|
|
|
- nocobase
|
|
|
|
environment:
|
|
|
|
VERDACCIO_PORT: ${VERDACCIO_PORT}
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "${VERDACCIO_PORT}:${VERDACCIO_PORT}"
|
2022-03-06 09:29:20 +00:00
|
|
|
adminer:
|
2022-03-09 09:50:45 +00:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: ./docker/adminer/Dockerfile
|
2022-03-06 09:29:20 +00:00
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- nocobase
|
|
|
|
ports:
|
|
|
|
- ${ADMINER_PORT}:8080
|
2022-03-07 07:29:51 +00:00
|
|
|
volumes:
|
|
|
|
- ./docker/adminer/login-sqlite-plugin.php:/var/www/html/plugins-enabled/login-sqlite-plugin.php
|
|
|
|
- ./:/var/www/app
|
2022-03-06 09:29:20 +00:00
|
|
|
postgres:
|
|
|
|
image: postgres:10
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- "${DB_POSTGRES_PORT}:5432"
|
|
|
|
networks:
|
|
|
|
- nocobase
|
|
|
|
command: postgres -c wal_level=logical
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: ${DB_USER}
|
|
|
|
POSTGRES_DB: ${DB_DATABASE}
|
|
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
|
|
nocobase:
|
|
|
|
build:
|
|
|
|
context: .
|
2022-03-09 09:50:45 +00:00
|
|
|
dockerfile: ./docker/nocobase/Dockerfile
|
2022-03-06 09:29:20 +00:00
|
|
|
networks:
|
|
|
|
- nocobase
|
2022-04-18 10:57:21 +00:00
|
|
|
command: [ "yarn", "start-pm2" ]
|
2022-03-06 09:29:20 +00:00
|
|
|
working_dir: /app
|
|
|
|
env_file: ./.env
|
|
|
|
volumes:
|
|
|
|
- ./:/app
|
|
|
|
expose:
|
2022-04-18 10:57:21 +00:00
|
|
|
- ${SERVER_PORT}
|
2022-03-06 09:29:20 +00:00
|
|
|
ports:
|
2022-04-18 10:57:21 +00:00
|
|
|
- "${SERVER_PORT}:${SERVER_PORT}"
|