-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
34 lines (31 loc) · 837 Bytes
/
Copy pathcompose.yaml
File metadata and controls
34 lines (31 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
services:
network-list-sync-main:
container_name: network-list-sync
hostname: network-list-sync
extends:
file: compose.base.yaml
service: network-list-sync-base
image: ghcr.io/mstrhakr/network-list-sync:main
profiles: [main]
network-list-sync-latest:
container_name: network-list-sync
hostname: network-list-sync
extends:
file: compose.base.yaml
service: network-list-sync-base
image: ghcr.io/mstrhakr/network-list-sync:latest
profiles: [latest]
network-list-sync-build:
container_name: network-list-sync-build
hostname: network-list-sync
extends:
file: compose.base.yaml
service: network-list-sync-base
build:
context: .
dockerfile: Dockerfile
profiles: [build]
networks:
backend:
name: backend
external: true