mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +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}"
|