You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
316 B
18 lines
316 B
2 years ago
|
version: '3.1'
|
||
|
|
||
|
services:
|
||
|
app:
|
||
|
build:
|
||
|
context: ..
|
||
|
dockerfile: ./deploy/Dockerfile
|
||
|
container_name: rust_solid_cassandra
|
||
|
restart: 'no'
|
||
|
depends_on:
|
||
|
- db
|
||
|
db:
|
||
|
image: cassandra:latest
|
||
|
container_name: cassandra
|
||
|
hostname: cassandra
|
||
|
# DEVEL
|
||
|
ports:
|
||
|
- '9042:9042'
|