Skip to content

Instantly share code, notes, and snippets.

@colinbes
Created March 3, 2021 20:39
Show Gist options
  • Save colinbes/9438f1199b1c2209438059642de2a91b to your computer and use it in GitHub Desktop.
Save colinbes/9438f1199b1c2209438059642de2a91b to your computer and use it in GitHub Desktop.
Stage 2 docker-compose file
version: '3'
services:
redis:
image: redis:6.2.0-alpine
volumes:
- ./redis-config:/usr/local/etc/redis
ports:
- "12345:6379"
command: redis-server /usr/local/etc/redis/redis.conf
akka-server:
image: "bdesigns/server-akka:1.0.0"
ports:
- "8082:8082"
volumes:
- ./akka-config:/etc/akka-server
networks:
default:
external:
name: external-example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment