-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* nin v2 * create v2 directory * v1 and v2 test * fix v1 test * update readme * nimble docs * fix nim yaml
- Loading branch information
1 parent
946ca17
commit a21601f
Showing
823 changed files
with
36,142 additions
and
5,973 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
version: '3' | ||
services: | ||
app-ubuntu-v1: | ||
build: | ||
context: . | ||
dockerfile: ./docker/ubuntu/Dockerfile | ||
args: | ||
VERSION: 1.6.14 | ||
tty: true | ||
volumes: | ||
- .:/root/project | ||
depends_on: | ||
- postgres | ||
- mysql | ||
- mariadb | ||
- surreal | ||
|
||
app-ubuntu: | ||
build: | ||
context: . | ||
dockerfile: ./docker/ubuntu/Dockerfile | ||
args: | ||
VERSION: 2.0.0 | ||
tty: true | ||
volumes: | ||
- .:/root/project | ||
depends_on: | ||
- postgres | ||
- mysql | ||
- mariadb | ||
- surreal | ||
|
||
mysql: | ||
image: mysql:8 | ||
tty: true | ||
command: --default-authentication-plugin=mysql_native_password | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root | ||
MYSQL_DATABASE: database | ||
MYSQL_USER: user | ||
MYSQL_PASSWORD: pass | ||
|
||
mariadb: | ||
image: mariadb | ||
tty: true | ||
command: --default-authentication-plugin=mysql_native_password | ||
environment: | ||
MYSQL_ROOT_PASSWORD: root | ||
MYSQL_DATABASE: database | ||
MYSQL_USER: user | ||
MYSQL_PASSWORD: pass | ||
|
||
postgres: | ||
image: postgres:alpine | ||
tty: true | ||
environment: | ||
POSTGRES_DB: database | ||
POSTGRES_USER: user | ||
POSTGRES_PASSWORD: pass | ||
|
||
surreal: | ||
image: surrealdb/surrealdb:1.0.0-beta.9 | ||
tty: true | ||
# command: start --log TRACE --user user --pass pass memory # like redis | ||
# command: start --log TRACE --user user --pass pass file://root/.surrealdb # like mongo | ||
command: start --strict --log TRACE --user user --pass pass memory # like in-memory sqlite | ||
# command: start --strict --log TRACE --user user --pass pass file://root/.surrealdb # like rdb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.