mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
367 B
YAML
21 lines
367 B
YAML
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}"
|