26 lines
530 B
YAML
26 lines
530 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
gcs-fixture:
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
port: 80
|
||
|
bucket: "bucket"
|
||
|
token: "o/oauth2/token"
|
||
|
dockerfile: Dockerfile
|
||
|
volumes:
|
||
|
- ./testfixtures_shared/shared:/fixture/shared
|
||
|
ports:
|
||
|
- "80"
|
||
|
gcs-fixture-third-party:
|
||
|
build:
|
||
|
context: .
|
||
|
args:
|
||
|
port: 80
|
||
|
bucket: "bucket"
|
||
|
token: "o/oauth2/token"
|
||
|
dockerfile: Dockerfile
|
||
|
volumes:
|
||
|
- ./testfixtures_shared/shared:/fixture/shared
|
||
|
ports:
|
||
|
- "80"
|