Skip to content

Instantly share code, notes, and snippets.

View nartamonov's full-sized avatar

Nikolay Artamonov nartamonov

View GitHub Profile
#custom development
mariadb:
image: mariadb:latest
container_name: mariadb
env_file: ./database/.env
ports:
- "3306:3306"
volumes:
- /home/user/data/mariadb:/var/lib/mysql
@nartamonov
nartamonov / Bar.scala
Created May 8, 2016 12:59 — forked from RichyHBM/Bar.scala
Avian executable with Scala example
//In subdirectory src/Foo
package Foo
object Bar {
val str = "Hello, world!"
}