mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
merged conflicts
This commit is contained in:
commit
5fc24a3751
@ -1,12 +1,6 @@
|
|||||||
version: "3.4"
|
version: "3.4"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mailserver:
|
|
||||||
image: djfarrelly/maildev
|
|
||||||
ports:
|
|
||||||
- 1080:80
|
|
||||||
networks:
|
|
||||||
- hc-network
|
|
||||||
webapp:
|
webapp:
|
||||||
build:
|
build:
|
||||||
context: webapp
|
context: webapp
|
||||||
@ -17,6 +11,8 @@ services:
|
|||||||
- NUXT_BUILD=/tmp/nuxt # avoid file permission issues when `rm -rf .nuxt/`
|
- NUXT_BUILD=/tmp/nuxt # avoid file permission issues when `rm -rf .nuxt/`
|
||||||
- PUBLIC_REGISTRATION=false
|
- PUBLIC_REGISTRATION=false
|
||||||
command: yarn run dev
|
command: yarn run dev
|
||||||
|
volumes:
|
||||||
|
- webapp_node_modules:/nitro-web/node_modules
|
||||||
backend:
|
backend:
|
||||||
build:
|
build:
|
||||||
context: backend
|
context: backend
|
||||||
@ -30,6 +26,12 @@ services:
|
|||||||
- SMTP_IGNORE_TLS=true
|
- SMTP_IGNORE_TLS=true
|
||||||
- "DEBUG=${DEBUG}"
|
- "DEBUG=${DEBUG}"
|
||||||
- PUBLIC_REGISTRATION=false
|
- PUBLIC_REGISTRATION=false
|
||||||
|
volumes:
|
||||||
|
- backend_node_modules:/nitro-backend/node_modules
|
||||||
|
- uploads:/nitro-backend/public/uploads
|
||||||
|
neo4j:
|
||||||
|
volumes:
|
||||||
|
- neo4j_data:/data
|
||||||
maintenance:
|
maintenance:
|
||||||
image: ocelotsocialnetwork/develop-maintenance:latest
|
image: ocelotsocialnetwork/develop-maintenance:latest
|
||||||
build:
|
build:
|
||||||
@ -39,6 +41,17 @@ services:
|
|||||||
- hc-network
|
- hc-network
|
||||||
ports:
|
ports:
|
||||||
- 3503:80
|
- 3503:80
|
||||||
|
mailserver:
|
||||||
|
image: djfarrelly/maildev
|
||||||
|
ports:
|
||||||
|
- 1080:80
|
||||||
|
networks:
|
||||||
|
- hc-network
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
hc-network:
|
hc-network:
|
||||||
|
volumes:
|
||||||
|
webapp_node_modules:
|
||||||
|
backend_node_modules:
|
||||||
|
neo4j_data:
|
||||||
|
uploads:
|
||||||
|
|||||||
20
docker-compose.production.yml
Normal file
20
docker-compose.production.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
version: "3.4"
|
||||||
|
|
||||||
|
services:
|
||||||
|
webapp:
|
||||||
|
build:
|
||||||
|
context: webapp
|
||||||
|
target: production
|
||||||
|
args:
|
||||||
|
- "BUILD_COMMIT=${TRAVIS_COMMIT}"
|
||||||
|
backend:
|
||||||
|
build:
|
||||||
|
context: backend
|
||||||
|
target: production
|
||||||
|
args:
|
||||||
|
- "BUILD_COMMIT=${TRAVIS_COMMIT}"
|
||||||
|
neo4j:
|
||||||
|
build:
|
||||||
|
context: neo4j
|
||||||
|
args:
|
||||||
|
- "BUILD_COMMIT=${TRAVIS_COMMIT}"
|
||||||
@ -60,12 +60,5 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- 7687:7687
|
- 7687:7687
|
||||||
- 7474:7474
|
- 7474:7474
|
||||||
volumes:
|
|
||||||
- neo4j_data:/data
|
|
||||||
networks:
|
networks:
|
||||||
hc-network:
|
hc-network:
|
||||||
volumes:
|
|
||||||
webapp_node_modules:
|
|
||||||
backend_node_modules:
|
|
||||||
neo4j_data:
|
|
||||||
uploads:
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user