Skip to content

Commit

Permalink
Make initial hacks to get Dockers to run
Browse files Browse the repository at this point in the history
  • Loading branch information
dezuman committed Nov 21, 2020
1 parent f52dd89 commit eec814f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
7 changes: 4 additions & 3 deletions infra/acala/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ WORKDIR /app

# TEMPORARY: use the branch that has a good reference to the submodules
# TODO: remove when the `master` branch of Acala is updated
RUN git fetch
RUN git checkout update-orml
RUN git pull
# DEZU: commented out because it fails
#RUN git fetch
#RUN git checkout update-orml
#RUN git pull

# Make sure submodule.recurse is set to true to make life with submodule easier.
RUN git config --global submodule.recurse true
Expand Down
20 changes: 11 additions & 9 deletions infra/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
version: "2"
services:

# DEZU; Commented out because break build etc etc, notice colons too
#
# Acala
#
acala:
build:
context: ./acala
ports:
- "0.0.0.0:9933:9933"
- "0.0.0.0:9944:9944"
entrypoint:
- "./root/run.sh"
- "${ACALA_ADDRESS}"
# acala
# build
# context ./acala
# ports
# - "0.0.0.0:9933:9933"
# - "0.0.0.0:9944:9944"
# entrypoint
# - "./root/run.sh"
# - "${ACALA_ADDRESS}"

#
# Binance Smart Chain
Expand Down
2 changes: 1 addition & 1 deletion multichain.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ type Chain string
// human-readable string to this set of enumerated values. Chains must be listed
// in alphabetical order.
const (
Acala = Chain("Acala")
//Acala = Chain("Acala") // DEZU: Commented out because it breaks the docker build process, #progamermove (#pro-grammermove?)
BinanceSmartChain = Chain("BinanceSmartChain")
Bitcoin = Chain("Bitcoin")
BitcoinCash = Chain("BitcoinCash")
Expand Down

0 comments on commit eec814f

Please sign in to comment.