services: proxy: build: ./proxy image: git.itqdev.xyz/4x10m/rusgram-proxy:${IMAGE_TAG:-latest} restart: unless-stopped ports: - "38000:5000" static: build: ./static image: git.itqdev.xyz/4x10m/rusgram-static:${IMAGE_TAG:-latest} restart: unless-stopped ports: - "127.0.0.1:38001:5001" volumes: - "./website:/app/files" database: build: ./database image: git.itqdev.xyz/4x10m/rusgram-database:${IMAGE_TAG:-latest} restart: unless-stopped ports: - "127.0.0.1:38002:5002" volumes: - "./website:/app/files" logic: build: ./logic image: git.itqdev.xyz/4x10m/rusgram-logic:${IMAGE_TAG:-latest} restart: unless-stopped ports: - "127.0.0.1:38003:5003" content: build: ./content image: git.itqdev.xyz/4x10m/rusgram-content:${IMAGE_TAG:-latest} restart: unless-stopped ports: - "127.0.0.1:38004:5004" volumes: - "./website:/app/files"